home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 March / PCWorld_2002-03_cd.bin / Software / TemaCD / xteq / setup.exe / {app} / plugins / XQ Windows Serial.xpl < prev    next >
Text File  |  2001-01-13  |  1KB  |  68 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 3.1"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH"="System\User Data"
  5. "NAME"="Windows PID"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="PID"
  8. "DESCRIPTION 1"=""
  9. "DESCRIPTION 2"=""
  10. "DESCRIPTION 3"=""
  11. "AUTHOR"="???"
  12. "COPYRIGHT"="???"
  13. "COMMENT 1"=" "
  14. "COMMENT 2"=" "
  15. "COMMENT 3"=" "
  16. "COMMENT 4"=" "
  17. "COMMENT 5"="Done by AmoKKomA..."
  18.  
  19.  
  20.  
  21. strRegPath="HKLM\Software\Microsoft\Windows\CurrentVersion\ProductID"
  22. strRegPathNT="HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProductID"
  23.  
  24. Sub Plugin_Initialize 
  25.  if GetWinVer=1 or GetWinVer=3 then
  26.     strValue=RegReadValue(strRegPath)
  27.  else
  28.     strValue=RegReadValue(strRegPathNT)
  29.  end if
  30.  
  31.  
  32.  Call SetUIElement(1,strValue)
  33. End Sub
  34.  
  35.  
  36. Sub Plugin_CheckData(ElementIndex)
  37. End Sub
  38.  
  39.  
  40. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  41.  strValue=GetUIElement(1)
  42.  
  43.  
  44.  If Len(strValue)<=0 Then
  45.  
  46.     Call MsgError("You have to enter a PID!")
  47.  
  48.  Else
  49.  
  50.     if GetWinVer=1 or GetWinVer=3 then
  51.        Call RegWriteValue(strRegPath,strValue,1)
  52.     else
  53.        Call RegWriteValue(strRegPathNT,strValue,1)
  54.     end if
  55.  
  56.  End If
  57.  
  58.  
  59.  
  60. End Sub
  61.  
  62.  
  63. Sub Plugin_Terminate 
  64. End Sub
  65.  
  66.  
  67.  
  68.